summaryrefslogtreecommitdiff
path: root/app/[lng]/evcp
diff options
context:
space:
mode:
Diffstat (limited to 'app/[lng]/evcp')
-rw-r--r--app/[lng]/evcp/(evcp)/evaluation-input/[id]/page.tsx22
-rw-r--r--app/[lng]/evcp/(evcp)/evaluation-input/page.tsx135
-rw-r--r--app/[lng]/evcp/(evcp)/login-history/page.tsx68
-rw-r--r--app/[lng]/evcp/(evcp)/report/page.tsx16
4 files changed, 232 insertions, 9 deletions
diff --git a/app/[lng]/evcp/(evcp)/evaluation-input/[id]/page.tsx b/app/[lng]/evcp/(evcp)/evaluation-input/[id]/page.tsx
new file mode 100644
index 00000000..3a403620
--- /dev/null
+++ b/app/[lng]/evcp/(evcp)/evaluation-input/[id]/page.tsx
@@ -0,0 +1,22 @@
+import { EvaluationPage } from "@/lib/evaluation-submit/evaluation-page"
+import { Metadata } from "next"
+
+export const metadata: Metadata = {
+ title: "평가 작성",
+ description: "협력업체 평가를 작성합니다",
+}
+
+interface PageProps {
+ params: {
+ id: string
+ }
+}
+
+export default function Page({ params }: PageProps) {
+ return <EvaluationPage />
+}
+
+export async function generateStaticParams() {
+ // 동적 경로이므로 빈 배열 반환
+ return []
+} \ No newline at end of file
diff --git a/app/[lng]/evcp/(evcp)/evaluation-input/page.tsx b/app/[lng]/evcp/(evcp)/evaluation-input/page.tsx
new file mode 100644
index 00000000..2cf5449f
--- /dev/null
+++ b/app/[lng]/evcp/(evcp)/evaluation-input/page.tsx
@@ -0,0 +1,135 @@
+import * as React from "react"
+import { type SearchParams } from "@/types/table"
+import { getValidFilters } from "@/lib/data-table"
+import { Skeleton } from "@/components/ui/skeleton"
+import { DataTableSkeleton } from "@/components/data-table/data-table-skeleton"
+import { Shell } from "@/components/shell"
+import { getServerSession } from "next-auth"
+import { authOptions } from "@/app/api/auth/[...nextauth]/route"
+import Link from "next/link"
+import { Button } from "@/components/ui/button"
+import { LogIn } from "lucide-react"
+import { getSHIEvaluationSubmissions } from "@/lib/evaluation-submit/service"
+import { getSHIEvaluationsSubmitSchema } from "@/lib/evaluation-submit/validation"
+import { SHIEvaluationSubmissionsTable } from "@/lib/evaluation-submit/table/submit-table"
+
+interface IndexPageProps {
+ searchParams: Promise<SearchParams>
+}
+
+export default async function IndexPage(props: IndexPageProps) {
+ const searchParams = await props.searchParams
+ const search = getSHIEvaluationsSubmitSchema.parse(searchParams)
+ const validFilters = getValidFilters(search.filters)
+
+ // Get session
+ const session = await getServerSession(authOptions)
+
+ // Check if user is logged in
+ if (!session || !session.user) {
+ // Return login required UI instead of redirecting
+ return (
+ <Shell className="gap-6">
+ <div className="flex items-center justify-between">
+ <div>
+ <div className="flex items-center gap-2">
+ <h2 className="text-2xl font-bold tracking-tight">
+ 정기평가
+ </h2>
+ </div>
+ <p className="text-muted-foreground">
+ 요청된 정기평가를 입력하고 제출할 수 있습니다.
+ </p>
+ </div>
+ </div>
+
+ <div className="flex flex-col items-center justify-center py-12 text-center">
+ <div className="rounded-lg border border-dashed p-10 shadow-sm">
+ <h3 className="mb-2 text-xl font-semibold">로그인이 필요합니다</h3>
+ <p className="mb-6 text-muted-foreground">
+ 정기평가를 확인하려면 먼저 로그인하세요.
+ </p>
+ <Button size="lg" asChild>
+ <Link href="/partners">
+ <LogIn className="mr-2 h-4 w-4" />
+ 로그인하기
+ </Link>
+ </Button>
+ </div>
+ </div>
+ </Shell>
+ )
+ }
+
+ const userId = session.user.id
+
+ // Validate vendorId (should be a number)
+ const idAsNumber = Number(userId)
+
+
+ if (isNaN(idAsNumber)) {
+ // Handle invalid vendor ID (this shouldn't happen if authentication is working properly)
+ return (
+ <Shell className="gap-6">
+ <div className="flex items-center justify-between">
+ <div>
+ <h2 className="text-2xl font-bold tracking-tight">
+ 정기평가
+ </h2>
+ </div>
+ </div>
+ <div className="flex flex-col items-center justify-center py-12 text-center">
+ <div className="rounded-lg border border-dashed p-10 shadow-sm">
+ <h3 className="mb-2 text-xl font-semibold">계정 오류</h3>
+ <p className="mb-6 text-muted-foreground">
+ 관리자에게 문의하세요.
+ </p>
+ </div>
+ </div>
+ </Shell>
+ )
+ }
+
+ // If we got here, we have a valid vendor ID
+ const promises = Promise.all([
+ getSHIEvaluationSubmissions({
+ ...search,
+ filters: validFilters,
+ }, idAsNumber)
+ ])
+
+ return (
+ <Shell className="gap-2">
+ <div className="flex items-center justify-between space-y-2">
+ <div className="flex items-center justify-between space-y-2">
+ <div>
+ <h2 className="text-2xl font-bold tracking-tight">
+ 정기평가
+ </h2>
+ <p className="text-muted-foreground">
+ 요청된 정기평가를 입력하고 제출할 수 있습니다.
+ </p>
+ </div>
+ </div>
+ </div>
+
+ <React.Suspense fallback={<Skeleton className="h-7 w-52" />}>
+ {/* DateRangePicker can go here */}
+ </React.Suspense>
+
+ <React.Suspense
+ fallback={
+ <DataTableSkeleton
+ columnCount={6}
+ searchableColumnCount={1}
+ filterableColumnCount={2}
+ cellWidths={["10rem", "40rem", "12rem", "12rem", "8rem", "8rem"]}
+ shrinkZero
+ />
+ }
+ >
+ <SHIEvaluationSubmissionsTable promises={promises} />
+ </React.Suspense>
+ </Shell>
+ )
+} \ No newline at end of file
diff --git a/app/[lng]/evcp/(evcp)/login-history/page.tsx b/app/[lng]/evcp/(evcp)/login-history/page.tsx
new file mode 100644
index 00000000..af9c94f2
--- /dev/null
+++ b/app/[lng]/evcp/(evcp)/login-history/page.tsx
@@ -0,0 +1,68 @@
+import * as React from "react"
+import { type SearchParams } from "@/types/table"
+
+import { getValidFilters } from "@/lib/data-table"
+import { Skeleton } from "@/components/ui/skeleton"
+import { DataTableSkeleton } from "@/components/data-table/data-table-skeleton"
+import { Shell } from "@/components/shell"
+
+import { InformationButton } from "@/components/information/information-button"
+import { getLoginSessions } from "@/lib/login-session/service"
+import { searchParamsCache } from "@/lib/login-session/validation"
+import { LoginSessionsTable } from "@/lib/login-session/table/login-sessions-table"
+
+interface LoginHistoryPageProps {
+ searchParams: Promise<SearchParams>
+}
+
+export default async function LoginHistoryPage(props: LoginHistoryPageProps) {
+ const searchParams = await props.searchParams
+ const search = searchParamsCache.parse(searchParams)
+
+ const validFilters = getValidFilters(search.filters)
+
+ const promises = Promise.all([
+ getLoginSessions({
+ ...search,
+ filters: validFilters,
+ }),
+ ])
+
+ return (
+ <Shell className="gap-2">
+ <div className="flex items-center justify-between space-y-2">
+ <div className="flex items-center justify-between space-y-2">
+ <div>
+ <div className="flex items-center gap-2">
+ <h2 className="text-2xl font-bold tracking-tight">
+ 로그인 세션 이력
+ </h2>
+ <InformationButton pagePath="admin/sessions/login-history" />
+ </div>
+ <p className="text-muted-foreground">
+ 사용자의 로그인/로그아웃 이력과 세션 정보를 확인할 수 있습니다.
+ </p>
+ </div>
+ </div>
+ </div>
+
+ <React.Suspense fallback={<Skeleton className="h-7 w-52" />}>
+ {/* 날짜 필터링 추가 가능 */}
+ </React.Suspense>
+
+ <React.Suspense
+ fallback={
+ <DataTableSkeleton
+ columnCount={8}
+ searchableColumnCount={2}
+ filterableColumnCount={3}
+ cellWidths={["12rem", "16rem", "12rem", "10rem", "12rem", "10rem", "8rem", "8rem"]}
+ shrinkZero
+ />
+ }
+ >
+ <LoginSessionsTable promises={promises} />
+ </React.Suspense>
+ </Shell>
+ )
+} \ No newline at end of file
diff --git a/app/[lng]/evcp/(evcp)/report/page.tsx b/app/[lng]/evcp/(evcp)/report/page.tsx
index 95566b05..f84ebe52 100644
--- a/app/[lng]/evcp/(evcp)/report/page.tsx
+++ b/app/[lng]/evcp/(evcp)/report/page.tsx
@@ -1,26 +1,22 @@
-
// app/procurement/dashboard/page.tsx
import * as React from "react";
import { Skeleton } from "@/components/ui/skeleton";
import { Shell } from "@/components/shell";
import { ErrorBoundary } from "@/components/error-boundary";
-import { getDashboardData } from "@/lib/dashboard/service";
+import { getDashboardData, refreshDashboardData } from "@/lib/dashboard/service";
import { DashboardClient } from "@/lib/dashboard/dashboard-client";
+export const dynamic = 'force-dynamic'; // ① 동적 페이지 선언
+
// 대시보드 데이터 로딩 컴포넌트
async function DashboardContent() {
try {
const data = await getDashboardData("evcp");
-
- const handleRefresh = async () => {
- "use server";
- return await getDashboardData("evcp");
- };
return (
<DashboardClient
initialData={data}
- onRefresh={handleRefresh}
+ onRefresh={refreshDashboardData}
/>
);
} catch (error) {
@@ -119,9 +115,11 @@ function DashboardError({ error, reset }: { error: Error; reset: () => void }) {
export default async function DashboardPage() {
return (
<Shell className="gap-6">
+ <ErrorBoundary fallback={DashboardError}>
<React.Suspense fallback={<DashboardSkeleton />}>
<DashboardContent />
</React.Suspense>
+ </ErrorBoundary>
</Shell>
);
-}
+} \ No newline at end of file